This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 837
fix: change method for alloc string to buffer #777
Merged
wbreza
merged 1 commit into
microsoft:develop
from
golee:issue-776-broken-local-projectfile
Apr 29, 2019
Merged
fix: change method for alloc string to buffer #777
wbreza
merged 1 commit into
microsoft:develop
from
golee:issue-776-broken-local-projectfile
Apr 29, 2019
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String.length is not appropriate for calcuating buffer size when non-alphabet letter is included in content. Change the method Buffer.alloc to Buffer.from as directed by the nodejs document.
Codecov Report
@@ Coverage Diff @@
## master #777 +/- ##
==========================================
+ Coverage 87.03% 87.07% +0.04%
==========================================
Files 125 125
Lines 4396 4396
Branches 834 834
==========================================
+ Hits 3826 3828 +2
+ Misses 568 566 -2
Partials 2 2
Continue to review full report at Codecov.
|
JacopoMangiavacchi
approved these changes
Apr 25, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
LGTM. Going to close and re-open to trigger the build |
wbreza
approved these changes
Apr 29, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
wbreza
pushed a commit
that referenced
this pull request
Apr 29, 2019
String.length is not appropriate for calculating buffer size when non-alphabet letter is included in content. Change the method Buffer.alloc to Buffer.from as directed by the nodejs document.
elizabethhalper
pushed a commit
to riagarg/VoTT
that referenced
this pull request
Aug 20, 2019
author Wallace Breza <[email protected]> 1556573964 -0700 committer Elizabeth Halper <[email protected]> 1566326008 -0700 parent e4ee4cd author Wallace Breza <[email protected]> 1556573964 -0700 committer Elizabeth Halper <[email protected]> 1566326007 -0700 parent e4ee4cd author Wallace Breza <[email protected]> 1556573964 -0700 committer Elizabeth Halper <[email protected]> 1566326004 -0700 parent e4ee4cd author Wallace Breza <[email protected]> 1556573964 -0700 committer Elizabeth Halper <[email protected]> 1566325986 -0700 parent e4ee4cd author Wallace Breza <[email protected]> 1556573964 -0700 committer Elizabeth Halper <[email protected]> 1566325973 -0700 Release 2.1.0 (microsoft#790) Updates package version and changelog for 2.1.0 release changed line refactor: Remove editor footer Dummy commit to kick off build again doc: Add bug & feature templates (microsoft#780) Adds bug and feature github templates Create CODE_OF_CONDUCT.md (microsoft#779) Adds code of conduct docs: updates to readme and changelog (microsoft#781) Minor updates and corrections to the main readme and changelog. fix: Fix display of tag color picker (microsoft#782) Resolves issue of tag color picker not being shown on alt-click or color-click + edit button. Also adds several tests for increased test coverage of tagInput.tsx feat: Add CSV Exporter (microsoft#757) Adds CSV export provider fix: change method for alloc string to buffer (microsoft#777) String.length is not appropriate for calculating buffer size when non-alphabet letter is included in content. Change the method Buffer.alloc to Buffer.from as directed by the nodejs document. fix: Updates backwards compat & fixes cntk export image bug (microsoft#789) Fixes an issue where the images exported out of a video file were missing file extension for video projects. Release 2.1.0 (microsoft#790) Updates package version and changelog for 2.1.0 release changed line rebase upstream dev
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix #776
String.length is not appropriate for calculating buffer size when non-alphabet letter is included in content.
Change the method Buffer.alloc to Buffer.from as directed by the nodejs document.